home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 8_scripts / repeat < prev    next >
Text File  |  2001-03-21  |  820b  |  26 lines

  1. Synopsis:
  2.    load repeat
  3.  
  4. Description:
  5.    This script is mostly an intellectual exercise.  It shows several
  6.    different ways of writing a /repeat command, varying from FE, FOR, and
  7.    WHILE loops to alias recursion.  All function the same:
  8.  
  9.      /repeat <count> <command>
  10.  
  11.    This causes the given command to be executed the specified number of
  12.    times.  The current version even allows itself to be called recursively.
  13.    Refer to the source code for more information.
  14.  
  15. Examples:
  16.    To remind yourself to get off irc:
  17.       /repeat 10 echo *** GET OFF IRC IT IS ROTTING YOUR BRAIN!!GGGG
  18.  
  19. See Also:
  20.    load(5); recursion(8); repeat(5)
  21.  
  22. Other Notes:
  23.    This script has been contributed to be many people.  The most recent
  24.    modifications come frm Jeremy Nelson (hop), jnelson@acronet.net.
  25.  
  26.